Cancel Order (v1.0.0)

Cancel order by order id

Overview

The Order Cancellation operation is a critical boundary-crossing interaction within the Ordering domain. This endpoint empowers authenticated users to cancel an existing order that hasn’t progressed beyond a cancellable state in its lifecycle.

From a domain perspective, order cancellation represents an important state transition that triggers several domain events and side effects:

  1. State Validation: The domain enforces business rules to verify if the order is eligible for cancellation based on its current state (only orders in “New” status can be cancelled).

  2. Domain Event Publication: Upon successful cancellation, the OrderCancelledEvent is raised, which may trigger compensating transactions across bounded contexts.

  3. Aggregate Consistency: The Order aggregate’s invariants are preserved throughout the cancellation process, ensuring the order transitions to a cancelled state only when business rules permit.

  4. Notification Generation: The cancellation typically initiates notification events to inform customers about their order status change.

Implementation Details

The Cancel Order operation is implemented using the CQRS pattern with a query handler that returns the updated order details:

Loading graph...

Key Components

  1. CancelOrderCommand: Implements IQuery<OrderDetailDto> to retrieve and update the order
  2. OrderFilterSpec: Ensures only orders in “New” status can be cancelled
  3. MarkAsCanceled: Domain method that changes the order status and registers the domain event
  4. OrderCancelledEvent: Domain event that triggers downstream processes

API Endpoint

The endpoint is configured with several important characteristics:

  • Authentication: Requires an authenticated user
  • Idempotency: Supports idempotent requests via the WithIdempotency() middleware
  • Versioning: Mapped to API version 1.0

Architecture

PATCH (/api/v1/orders/{orderId}/cancel)

Parameters

  • orderId (path) (required): The unique identifier of the order to cancel
  • x-request-id (header) (required): A unique key to ensure idempotent processing

Example Usage

Terminal window
curl -X PATCH "https://api.bookworm.com/api/v1/orders/{orderId}/cancel" \
-H "Authorization: Bearer <your-jwt-token>" \
-H "x-request-id: <unique-request-id>"

Responses

200 OK

Returns the cancelled order details.

Example Response

200 OK
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"date": "2025-03-31T02:54:17.223Z",
"status": "Cancelled",
"total": 292.4,
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Book Name",
"quantity": 10,
"price": 29.24
}
]
}

404 Not Found

404 Not Found
{
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.4",
"title": "Not Found",
"status": 404,
"detail": "Order with id {orderId} not found."
}

401 Unauthorized

Returned when the request lacks valid authentication credentials.

400 Bad Request

Returned when the order cannot be cancelled (e.g., already completed or cancelled).

409 Conflict

Returned when the order is already cancelled.